home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / pmake / lst / RCS / lstFake.c,v < prev    next >
Encoding:
Text File  |  1992-05-19  |  1.3 KB  |  57 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.11.17.20.52.30;  author adam;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.2
  21. log
  22. @checked in with -k by kupfer at 92.05.18.17.32.37.
  23. @
  24. text
  25. @/*-
  26.  * lstFake.c --
  27.  *    This is a file whose sole purpose is to force ranlib to
  28.  *    place enough entries in the library's table of contents to
  29.  *    prevent it (the table of contents) from looking like an object
  30.  *    file. As of this writing, the table had 0410 (shared text) entries
  31.  *    in it, so we define five junk variables to up the number beyond
  32.  *    the range of the magic numbers.
  33.  *
  34.  * Copyright (c) 1988 by the Regents of the University of California
  35.  *
  36.  * Permission to use, copy, modify, and distribute this
  37.  * software and its documentation for any purpose and without
  38.  * fee is hereby granted, provided that the above copyright
  39.  * notice appears in all copies.  The University of California nor
  40.  * Adam de Boor makes any representations about the suitability of this
  41.  * software for any purpose.  It is provided "as is" without
  42.  * express or implied warranty.
  43.  *
  44.  *
  45.  */
  46. #ifndef lint
  47. static char *rcsid =
  48. "$Id: lstFake.c,v 1.2 88/11/17 20:52:30 adam Exp $ SPRITE (Berkeley)";
  49. #endif lint
  50.  
  51. int _junk_one__ = 1;
  52. int _junk_two__ = 2;
  53. int _junk_three__ = 3;
  54. int _junk_four__ = 4;
  55. int _junk_five__ = 5;
  56. @
  57.